Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
The flow-bin npm package provides a command-line interface for Flow, a static type checker for JavaScript. Flow helps developers catch common errors early by adding type annotations to JavaScript code.
Type Checking
Flow can be used to add type annotations to JavaScript functions and variables, which helps catch type errors during development.
/* @flow */
function add(a: number, b: number): number {
return a + b;
}
add(1, 2); // No error
add('1', '2'); // Error: string is incompatible with number
Type Inference
Flow can infer types even if they are not explicitly annotated, providing type safety without requiring extensive type annotations.
/* @flow */
function square(n) {
return n * n;
}
square(2); // No error
square('2'); // Error: string is incompatible with number
Type Definitions
Flow allows you to import and use type definitions from other files, making it easier to manage and reuse types across a project.
/* @flow */
import type { User } from './types';
function getUser(id: number): User {
// Implementation
}
TypeScript is a popular static type checker for JavaScript developed by Microsoft. It offers a superset of JavaScript with optional static types, and it has a large ecosystem and community support. Unlike Flow, TypeScript requires a compilation step to convert TypeScript code into JavaScript.
PropTypes is a library for runtime type checking of React props. It is less comprehensive than Flow or TypeScript as it only checks types at runtime and is specifically designed for React components. It does not provide the same level of static analysis and type inference as Flow.
ESLint plugin for Flow type annotations. It provides linting rules for Flow type annotations, helping to enforce consistent style and catch potential issues. It complements Flow by integrating type checking into the ESLint workflow.
Binary wrapper for Flow - A static type checker for JavaScript
OS X, Linux (64-bit) and Windows binaries are currently provided.
$ npm install --global flow-bin
$ flow --help
$ npm install --save flow-bin
const execFile = require('child_process').execFile;
const flow = require('flow-bin');
execFile(flow, ['check'], (err, stdout) => {
console.log(stdout);
});
flow-bin is BSD-licensed. We also provide an additional patent grant.
package.json
to reflect the flow version to publish. (For now, flow-bin
's version is also the version of the flow
binary).make
.SHASUM256.txt
and package.json
.Updated binary to v0.30.0
, with the correct version.master
.git checkout master &&
git pull &&
make test &&
git tag v$(node -p 'require("./package.json").version') &&
git push v$(node -p 'require("./package.json").version')
npm pack
tar xf "flow-bin-$(node -p 'require("./package.json").version').tgz"
cd package
npm run verify
FAQs
Binary wrapper for Flow - A static type checker for JavaScript
The npm package flow-bin receives a total of 415,001 weekly downloads. As such, flow-bin popularity was classified as popular.
We found that flow-bin demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.